home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / core / UIComponentGlobals.as < prev    next >
Encoding:
Text File  |  2010-05-14  |  728 b   |  30 lines

  1. package mx.core
  2. {
  3.    import flash.display.InteractiveObject;
  4.    import flash.geom.Matrix;
  5.    import mx.managers.ILayoutManager;
  6.    
  7.    use namespace mx_internal;
  8.    
  9.    public class UIComponentGlobals
  10.    {
  11.       mx_internal static var layoutManager:ILayoutManager;
  12.       
  13.       mx_internal static var nextFocusObject:InteractiveObject;
  14.       
  15.       mx_internal static var callLaterSuspendCount:int = 0;
  16.       
  17.       mx_internal static var callLaterDispatcherCount:int = 0;
  18.       
  19.       mx_internal static var tempMatrix:Matrix = new Matrix();
  20.       
  21.       mx_internal static var designTime:Boolean = false;
  22.       
  23.       public function UIComponentGlobals()
  24.       {
  25.          super();
  26.       }
  27.    }
  28. }
  29.  
  30.